home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / AIncludes / Packages.a < prev    next >
Text File  |  1996-05-01  |  1KB  |  55 lines

  1. ;
  2. ;    File:        Packages.a
  3. ;
  4. ;    Contains:    Package Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.0d3 on Copland DR1
  8. ;
  9. ;    Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10. ;
  11. ;    Bugs?:        If you find a problem with this file, send the file and version
  12. ;                information (from above) and the problem description to:
  13. ;
  14. ;                    Internet:    apple.bugs@applelink.apple.com
  15. ;                    AppleLink:    APPLE.BUGS
  16. ;
  17. ;
  18.     IF &TYPE('__PACKAGES__') = 'UNDEFINED' THEN
  19. __PACKAGES__ SET 1
  20.  
  21.     IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
  22.     include 'Types.a'
  23.     ENDIF
  24.     IF FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED THEN
  25.  
  26. listMgr                            EQU        0                    ; list manager 
  27. dskInit                            EQU        2                    ; Disk Initializaton 
  28. stdFile                            EQU        3                    ; Standard File 
  29. flPoint                            EQU        4                    ; Floating-Point Arithmetic 
  30. trFunc                            EQU        5                    ; Transcendental Functions 
  31. intUtil                            EQU        6                    ; International Utilities 
  32. bdConv                            EQU        7                    ; Binary/Decimal Conversion 
  33. editionMgr                        EQU        11                    ; Edition Manager 
  34. ;
  35. ; pascal void InitPack(short packID)
  36. ;
  37.     IF ¨ GENERATINGCFM THEN
  38.         _InitPack:    OPWORD    $A9E5
  39.     ELSE
  40.         IMPORT_CFM_FUNCTION InitPack
  41.     ENDIF
  42.  
  43. ;
  44. ; pascal void InitAllPacks(void )
  45. ;
  46.     IF ¨ GENERATINGCFM THEN
  47.         _InitAllPacks:    OPWORD    $A9E6
  48.     ELSE
  49.         IMPORT_CFM_FUNCTION InitAllPacks
  50.     ENDIF
  51.  
  52.     ENDIF
  53.     ENDIF ; __PACKAGES__ 
  54.  
  55.